home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
11
/
0
/
DISK1105.ZIP
/
HELP
/
#EDIT6.3
< prev
next >
Wrap
Text File
|
1988-06-01
|
3KB
|
70 lines
══════════════════════════════════════════════════════════════
SPECIAL TABLE SETUP CAPABILITY
══════════════════════════════════════════════════════════════
TABLE
The TABLE data statement is a very powerful mechanism to
minimize the redundancy of similar data statements for
some MODELS. This is accomplished by following the
STEPS:
1. Start with the word TABLE and then followed by the
PRICE, LIMITS or relational data statement to be
used for the TABLE. This may be any of the
previously discussed data statements like:
PRICES/COSTS USE/MAKE
FIXED POOL/INVENTORY
L.L./U.L. DISTRIBUTE
LIMITS APPLY
EQUATE/EQUATIONS XFERCOST
...more information on next view
2. The question mark(?) will represent the positions
within this relational data statement which will
be replaced by data in the following table. The
statement is accordingly terminated with the semi-
colon (;). These replaceable positions may be a
resource, a data value or two(2) data values
(LIMITS). i.e.
'-------------------------------------------------
USE #?, #100=? MAKE #?=?, #50=?;
'-------------------------------------------------
This line requires five(5) data values, in the
following order:
1. a resource number
2. a data value
3.,4. a resource number and data value
5. a data value
...more information on next view
3. This is then followed by the DATA section, with
numbers listed in tabular form. The numbers within
the DATA table MUST be separated by commas(,),
TABS or carriage return. For convenience and
aesthetic, comments lines may be added freely.
DATA section for the above sample may be:
'-------------------------------------------------
DATA
#100, 5.00, #10, 2.0, 55.6
#101, 5.55, #11, 2.3, 80.0
#102, 7.80, #12, 3.4, 86.0
END
'-------------------------------------------------
4. Terminate the data section with the END statement.
...try other screens